*{
    margin: 0.2rem;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Nunito Sans", sans-serif;
    margin: 0;
    font-size: medium;
    padding: 0dvh;
    margin-left: auto;
    margin-right: auto;
    min-height: 100dvh;
    background-color: rgb(22, 21, 21);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}


/*inicio de header*/
.contenedora{
    max-width: 65rem;
    margin-inline: auto;
        
padding: 1rem;
    padding-top: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: left;
    flex-wrap: wrap;
    gap: 3rem;
}
.logo{
    object-fit: cover;
    height: 100%;
}

/*inicio de nav*/
.nav{
    width: 80%;
    height: 3em;
    background-color: rgb(8, 8, 8);
}
.barnav{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.menu{
    width: 20%;
    height: 100%;
    background-color: rgb(245, 95, 8);
    color: aliceblue;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.menu:hover{
    background-color: aliceblue;
    color:blueviolet;
    transition: 0.5s;

}


/*inicio de banner*/
.banner{
    
    color: aliceblue;
    display: flex; flex-direction: row; 
    gap: 1rem;
    width: 80%;
    height: calc(100vh - 7em);
    background-color: rgb(10, 10, 10);
}




/*inicio de footer*/
.footer{
    color: beige;
    font-size:x-small;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-display:center;
    width: 80%;
    height: 3em;
    background-color: black;
}